import { Metadata } from "next" import { Separator } from "@/components/ui/separator" import { SidebarNav } from "@/components/layout/sidebar-nav" export const metadata: Metadata = { title: "System Setting", // description: "Advanced form example using react-hook-form and Zod.", } interface SettingsLayoutProps { children: React.ReactNode params: { lng: string } } export default async function SettingsLayout({ children, params, }: { children: React.ReactNode params: { lng: string } }) { const resolvedParams = await params const lng = resolvedParams.lng const sidebarNavItems = [ { title: "삼성중공업 사용자", href: `/${lng}/evcp/system`, }, { title: "Roles", href: `/${lng}/evcp/system/roles`, }, { title: "권한 통제", href: `/${lng}/evcp/system/permissions`, }, { title: "협력업체 사용자", href: `/${lng}/evcp/system/admin-users`, }, { title: "비밀번호 정책", href: `/${lng}/evcp/system/password-policy`, }, ] return ( <>

시스템 설정

{/*

사용자, 롤, 접근 권한을 관리하세요.

*/}
{children}
) }